home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / libg_261.zip / libg_261 / libg++ / src / bitxor.c < prev    next >
C/C++ Source or Header  |  1994-05-22  |  2KB  |  42 lines

  1. /* Copyright (C) 1994 Free Software Foundation
  2.  
  3. This file is part of the GNU BitString Library.  This library is free
  4. software; you can redistribute it and/or modify it under the
  5. terms of the GNU General Public License as published by the
  6. Free Software Foundation; either version 2, or (at your option)
  7. any later version.
  8.  
  9. This library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU General Public License for more details.
  13.  
  14. You should have received a copy of the GNU General Public License
  15. along with GNU CC; see the file COPYING.  If not, write to
  16. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. As a special exception, if you link this library with files
  19. compiled with a GNU compiler to produce an executable, this does not cause
  20. the resulting executable to be covered by the GNU General Public License.
  21. This exception does not however invalidate any other reasons why
  22. the executable file might be covered by the GNU General Public License. */
  23.  
  24. /*  Written by Per Bothner (bothner@cygnus.com). */
  25.  
  26. #include "bitprims.h"
  27.  
  28. /* Copy LENGTH bits from (starting at SRCBIT) into pdst starting at DSTBIT.
  29.    This will work even if psrc & pdst overlap. */
  30.  
  31. void
  32. _BS_xor (pdst, dstbit, psrc, srcbit, length)
  33.      register _BS_word* pdst;
  34.      int dstbit;
  35.      register const _BS_word* psrc;
  36.      int srcbit;
  37.      _BS_size_t length;
  38. {
  39. #define COMBINE(dst, src) (dst) ^ (src)
  40. #include "bitdo2.h"
  41. }
  42.